home *** CD-ROM | disk | FTP | other *** search
/ Champak 141 / (Vol 141) Oct 17 2011.iso / Games / Clueless.swf / scripts / org / flintparticles / counters / ZeroCounter.as < prev   
Encoding:
Text File  |  2011-10-17  |  473 b   |  25 lines

  1. package org.flintparticles.counters
  2. {
  3.    import org.flintparticles.emitters.Emitter;
  4.    
  5.    public class ZeroCounter implements Counter
  6.    {
  7.        
  8.       
  9.       public function ZeroCounter()
  10.       {
  11.          super();
  12.       }
  13.       
  14.       public function updateEmitter(param1:Emitter, param2:Number) : uint
  15.       {
  16.          return 0;
  17.       }
  18.       
  19.       public function startEmitter(param1:Emitter) : uint
  20.       {
  21.          return 0;
  22.       }
  23.    }
  24. }
  25.